XPSDKVideoConnectionFrameLiveFlags

typedef enum XPSDKVideoConnectionFrameLiveFlags
    XPSDKVideoConnectionFrameLiveFlags

Flags for a frame containing live information

  • Declaration

    Objective-C

    enum {
        ///Live frame flag indicating live feed
        XPSDKVideoConnectionFrameLiveFeed = 1,
        ///Live frame flag indicating motion
        XPSDKVideoConnectionFrameMotion = 2,
        ///Live frame flag indicating recording
        XPSDKVideoConnectionFrameRecording = 4,
        ///Live frame flag indicating notification
        XPSDKVideoConnectionFrameNotification = 8,
        ///Live frame flag indicating that connection is lost
        XPSDKVideoConnectionFrameCameraConnectionLost = 16,
        ///Live frame flag indicating database fail
        XPSDKVideoConnectionFrameDatabaseFail = 32,
        ///Live frame flag indicating that disk is full
        XPSDKVideoConnectionFrameDiskFull = 64,
        ///Live frame flag indicating live has stopped
        XPSDKVideoConnectionFrameClientLiveStopped = 128
    }